home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
C/C++ Users Group Library 1996 July
/
C-C++ Users Group Library July 1996.iso
/
vol_300
/
361_01
/
beep.c
< prev
next >
Wrap
C/C++ Source or Header
|
1991-09-18
|
456b
|
20 lines
/* Beep.c --> Right out of Turbo-C Bible.
*
* Author: J.Ekwall 13 September 91
*
* Copyrighted to the Public Domain. Unlimited Distribution Authorized.
*
* User Assumes All Risks/Liabilities.
*
* Last Update: 13 September 91/EK
*/
#include <stdek.h>
#include <gadgets.h>
#include <dos.h>
void Beep(unsigned int Pitch, unsigned int Duration)
{ sound(Pitch); delay(Duration); nosound(); }